Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / ReadOnlyStructList<T> Class / CopyTo Method / CopyTo(T[],Int32) Method
The one-dimensional System.Array that is the destination of the elements copied from ReadOnlyStructList<T>.
The zero-based index in array at which copying begins.

In This Topic
    CopyTo(T[],Int32) Method
    In This Topic
    Copies the entire ReadOnlyStructList<T> to a compatible one-dimensional array, starting at the specified index of the target array.
    Syntax
    'Declaration
     
    Public Overloads Sub CopyTo( _
       ByVal array() As T, _
       ByVal arrayIndex As System.Integer _
    ) 
    public void CopyTo( 
       T[] array,
       System.int arrayIndex
    )

    Parameters

    array
    The one-dimensional System.Array that is the destination of the elements copied from ReadOnlyStructList<T>.
    arrayIndex
    The zero-based index in array at which copying begins.
    See Also